Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use Path.GetTempFileName() #16966

Merged
merged 2 commits into from
Nov 8, 2024
Merged

Don't use Path.GetTempFileName() #16966

merged 2 commits into from
Nov 8, 2024

Conversation

MikeAlhayek
Copy link
Member

The method Path.GetTempFileName() get's the full path + a name of a new temporary file. This method will create the file on desk when it is called.

Instead, PathExtensions.Combine(Path.GetTempPath(), Path.GetRandomFileName()) will return the name only but will not create the file automatically for us.

@MikeAlhayek MikeAlhayek merged commit 64e03ce into main Nov 8, 2024
12 checks passed
@MikeAlhayek MikeAlhayek deleted the ma/GetTempFileName branch November 8, 2024 00:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants